home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / sdkdemoppg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-16  |  1.5 KB  |  46 lines

  1. /******************************************************************/
  2. /*                                                                */
  3. /*                      TurboCAD for Windows                      */
  4. /*                   Copyright (c) 1993 - 2001                    */
  5. /*             International Microcomputer Software, Inc.         */
  6. /*                            (IMSI)                              */
  7. /*                      All rights reserved.                      */
  8. /*                                                                */
  9. /******************************************************************/
  10.  
  11. // SDKDemoPpg.h : Declaration of the CSDKDemoPropPage property page class.
  12.  
  13. ////////////////////////////////////////////////////////////////////////////
  14. // CSDKDemoPropPage : See SDKDemoPpg.cpp.cpp for implementation.
  15.  
  16. class CSDKDemoPropPage : public COlePropertyPage
  17. {
  18.     DECLARE_DYNCREATE(CSDKDemoPropPage)
  19.     DECLARE_OLECREATE_EX(CSDKDemoPropPage)
  20.  
  21. // Constructor
  22. public:
  23.     CSDKDemoPropPage();
  24.  
  25. // Dialog Data
  26.     //{{AFX_DATA(CSDKDemoPropPage)
  27.     enum { IDD = IDD_PROPPAGE_SDKDEMO };
  28.     CListBox    m_lbLayers;
  29.     CString    m_strFileName;
  30.     //}}AFX_DATA
  31.  
  32. // Implementation
  33. protected:
  34.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35.  
  36. // Message maps
  37. protected:
  38.     //{{AFX_MSG(CSDKDemoPropPage)
  39.     afx_msg void OnFileBrowse();
  40.     afx_msg void OnLayerRefresh();
  41.     afx_msg void OnLayerShowAll();
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44.  
  45. };
  46.